home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / mike40c.arc / GETMODE.C < prev    next >
Text File  |  1986-10-23  |  240b  |  17 lines

  1. #include <dos.h>
  2.  
  3. get_mode()   /* Check for Monocrome or graphics  */
  4. {
  5.     union REGS REG;
  6.  
  7.     REG.h.ah = 15;
  8.     REG.h.bh = 00;
  9.     REG.h.ch = 0;
  10.     REG.h.cl = 0;
  11.     int86(0x10, ®, ®);
  12.  
  13.     return(REG.h.al);
  14. }
  15.  
  16.  
  17.